From cc00fee386417bebf8c5991e0e4bcdeac949834f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Sat, 22 Apr 2017 12:16:03 +0200 Subject: [PATCH] testboxcss: Fix custom CSS remove engine: parameter and add units to values --- tests/testboxcss.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/testboxcss.c b/tests/testboxcss.c index 3fee69534a..a5c57a72ad 100644 --- a/tests/testboxcss.c +++ b/tests/testboxcss.c @@ -23,11 +23,10 @@ #define DEFAULT_CSS \ ".play {\n" \ - " engine: none;\n" \ " background-image: none;\n" \ " background-color: red;\n" \ " border-color: black;\n" \ - " border-radius: 0;\n" \ + " border-radius: 0px;\n" \ "}\n" \ "\n" \ ".play:nth-child(even) {\n" \ @@ -36,11 +35,11 @@ "}\n" \ "\n" \ ".play:nth-child(first) {\n" \ - " border-radius: 5 0 0 5;\n" \ + " border-radius: 5px 0px 0px 5px;\n" \ "}\n" \ "\n" \ ".play:nth-child(last) {\n" \ - " border-radius: 0 5 5 0;\n" \ + " border-radius: 0px 5px 5px 0px;\n" \ "}\n" \ "\n" -- 2.30.2